@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f0f4f8;
            margin: 0;
            display: flex;
            width: 100%;
            min-height: 100vh;
            align-items: center;
            text-align: center;
        }

        #juego {
            max-width: 800px;
            margin: 0 auto;
            background-color: #ffffff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        h2 {
            color: #2c3e50;
            font-size: 38px;
            margin-bottom: 15px;
        }

        #pregunta {
            font-size: 24px;
            margin-bottom: 30px;
            color: hsl(210, 29%, 29%);
            font-size: 35px;
        }

        .opcion {
            display: block;
            background-color: #1abc9c;
            color: #ffffff;
            padding: 15px;
            margin: 15px auto;
            border-radius: 15px;
            cursor: pointer;
            text-decoration: none;
            width: 100%;
            border: none;
            transition: background-color 0.3s ease, transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
            font-size: 40px;
        }

        .opcion:hover {
            background-color: #16a085;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        #resultado {
            font-size: 35px;
            margin-top: 20px;
            min-height: 40px;
        }

        #info {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            background-color: #ecf0f1;
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
            height: 100%;
        }

        .info-item {
            color: #2c3e50;
            background-color: #ffffff;
            padding: 10px 20px;
            border-radius: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
            min-width: 150px;
            display: flex;
            align-items: center;
            width: 100%;
        }

        @media (min-width: 1024px) {
            .info-item {
                width: 200px;
            }
        }

        #nivel {
            color: #27ae60;
            font-size: 30px;
            font-weight: 600;
        }

        #cronometro {
            color: #e74c3c;
            font-size: 30px;
            font-weight: 600;
        }

        #vidas {
            color: #f39c12;
            font-size: 30px;
            font-weight: 600;
        }

        #boton-reiniciar {
            display: none;
            margin-top: 20px;
            padding: 12px 30px;
            font-size: 38px;
            background-color: #e74c3c;
            color: #ffffff;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        #boton-reiniciar:hover {
            background-color: #c0392b;
        }